    html {
  scroll-behavior: smooth;
}
    .vc{
    background: white;
    width: 100%;
    margin: 10px;
    height: 90px;
    text-align: center;
    font-size: 30px;
    padding-top: 30px;
    color: #ff5a2c;
        }
    .co-bt{
        background:#ff5a2c !important; padding: 10px;color: white;border-radius: 5px;
    }
    .co-bt:hover{
        color: white;
        background-color: #092ace;
    }
    .container { width: 90%; margin: auto; }
.message-box { color: white; padding: 10px; margin: 10px 0; border-radius: 5px; }
.success { background: green; }
.error { background: red; }
       .events_full_box {
        margin-bottom: 20px;
    }

    .events_single {
        transition: transform 0.3s ease;
        border: 1px solid #e0e0e0;
    }

    .events_single:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.1) !important;
    }

    .event_banner {
        flex-shrink: 0;
    }

    .event_banner img {
        object-fit: cover;
        max-width: 250px;
        width: 100%;
        height: auto;
        border: 3px solid #f0f0f0;
    }

    .event_info h3 {
        color: #2c3e50;
        margin-bottom: 8px;
        font-size: 1.6rem;
        font-weight: 600;
    }

    .event_info h4 {
        color: #7f8c8d;
        margin-bottom: 20px;
        font-size: 1.1rem;
        font-weight: 400;
    }

    .teacher-info {
        background: #f8f9fa;
        padding: 20px;
        border-radius: 8px;
        border-left: 4px solid #3498db;
        margin-top: 15px;
        line-height: 30px;
    }

    .teacher-info ul li {
        margin-bottom: 15px;
        color: #555;
        line-height: 1.8;
        font-size: 0.95rem;
        display: flex;
        align-items: flex-start;
    }

    .teacher-info ul li:last-child {
        margin-bottom: 0;
    }

    .info-label {
        color: #000000;
        font-weight: 600;
        min-width: 130px;
        display: inline-block;
        position: relative;
        padding-left: 20px;
        font-size: 25px;
    }

    .info-label:before {
        content: "▸";
        position: absolute;
        left: 0;
        color: #3498db;
        font-weight: bold;
    }

    .info-value {
        color: #34495e;
        flex: 1;
        padding-left: 10px;
    }

    /* Icons for better look */
    .qualification-icon:before {
        content: "🎓 ";
        margin-right: 5px;
    }

    .experience-icon:before {
        content: "💼 ";
        margin-right: 5px;
    }

    .language-icon:before {
        content: "🗣️ ";
        margin-right: 5px;
    }

    /* Mobile Responsive */
    @media (max-width: 767px) {
        .event_banner img {
            max-width: 100%;
            margin: 0 auto;
            display: block;
        }

        .event_info {
            margin-top: 20px;
        }

        .event_info h3 {
            font-size: 1.4rem;
            text-align: center;
        }

        .event_info h4 {
            font-size: 1rem;
            text-align: center;
        }

        .teacher-info {
            padding: 15px;
        }

        .teacher-info ul li {
            flex-direction: column;
            margin-bottom: 18px;
        }

        .info-label {
            min-width: 100%;
            margin-bottom: 5px;
        }

        .info-value {
            padding-left: 20px;
        }
    }

    /* Tablet */
    @media (min-width: 768px) and (max-width: 991px) {
        .event_banner img {
            max-width: 200px;
        }

        .event_info {
            padding-left: 15px;
        }

        .info-label {
            min-width: 120px;
        }
    }

    /* Desktop */
    @media (min-width: 992px) {
        .event_banner img {
            max-width: 250px;
        }

        .event_info {
            padding-left: 25px;
        }

        .info-label {
            min-width: 140px;
        }
    }